home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 16 / CU Amiga Magazine's Super CD-ROM 16 (1997-10-16)(EMAP Images)(GB)[!][issue 1997-11].iso / CUCD / Graphics / Ghostscript / source / imainarg.h < prev    next >
C/C++ Source or Header  |  1996-04-16  |  2KB  |  48 lines

  1. /* Copyright (C) 1996 Aladdin Enterprises.  All rights reserved.
  2.   
  3.   This file is part of Aladdin Ghostscript.
  4.   
  5.   Aladdin Ghostscript is distributed with NO WARRANTY OF ANY KIND.  No author
  6.   or distributor accepts any responsibility for the consequences of using it,
  7.   or for whether it serves any particular purpose or works at all, unless he
  8.   or she says so in writing.  Refer to the Aladdin Ghostscript Free Public
  9.   License (the "License") for full details.
  10.   
  11.   Every copy of Aladdin Ghostscript must include a copy of the License,
  12.   normally in a plain ASCII text file named PUBLIC.  The License grants you
  13.   the right to copy, modify and redistribute Aladdin Ghostscript, but only
  14.   under certain conditions described in the License.  Among other things, the
  15.   License requires that the copyright notice and this notice be preserved on
  16.   all copies.
  17. */
  18.  
  19. /* imainarg.h */
  20. /* argv/argc interface to imainarg.c */
  21.  
  22. #ifndef imainarg_INCLUDED
  23. #  define imainarg_INCLUDED
  24.  
  25. /* Define an opaque type for an interpreter instance.  See imain.h. */
  26. #ifndef gs_main_instance_DEFINED
  27. #  define gs_main_instance_DEFINED
  28. typedef struct gs_main_instance_s gs_main_instance;
  29. #endif
  30.  
  31. /*
  32.  * As a shortcut for very high-level clients, we define a single call
  33.  * that does the equivalent of command line invocation, passing argc
  34.  * and argv.  This call includes calling init0 through init2.
  35.  * argv should really be const char *[], but ANSI C requires writable
  36.  * strings (which, however, it forbids the callee to modify!).
  37.  */
  38. int gs_main_init_with_args(P3(gs_main_instance *minst, int argc,
  39.                   char *argv[]));
  40.  
  41. /*
  42.  * Run the 'start' procedure (after processing the command line).
  43.  * Note that this procedure exits rather than returning.
  44.  */
  45. void gs_main_run_start(P1(gs_main_instance *minst));
  46.  
  47. #endif                    /* imainarg_INCLUDED */
  48.